home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8542 / 8542.xpi / chrome / lastpass.jar / content / selectpasswords.xul < prev    next >
Extensible Markup Language  |  2010-02-14  |  2KB  |  60 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://global/skin/passwordmgr.css" type="text/css"?>
  5. <?xml-stylesheet href="chrome://lastpass/content/selectpasswords.css" type="text/css"?>
  6. <!DOCTYPE dialog SYSTEM "chrome://lastpass/locale/lastpass.dtd">
  7.  
  8. <window id="SignonViewerDialog"
  9.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.         onload="SignonsStartup();">
  11.     
  12.     <script src="chrome://lastpass/content/selectpasswords.js"/>
  13.     <script src="chrome://lastpass/content/getlp.js"/>
  14.     
  15.     <stringbundle id="signonBundle"
  16.                 src="chrome://passwordmgr/locale/passwordmgr.properties"/>
  17.     
  18.     
  19.     <vbox id="savedsignons" class="contentPane" flex="1">
  20.         <description control="signonsTree" id="signonsIntro"/>
  21.         <separator class="thin"/>
  22.         <tree id="signonsTree" flex="1" style="height: 20em;" hidecolumnpicker="true"
  23.           onselect="SignonSelected();" editable="true">
  24.             <treecols>
  25.                 <treecol id="siteCol" flex="5"
  26.                  persist="width"/>
  27.                 <splitter class="tree-splitter"/>
  28.                 <treecol id="userCol" flex="2"
  29.                  persist="width"/>
  30.                 <splitter class="tree-splitter"/>
  31.                 <treecol id="passwordCol" flex="2"
  32.                  persist="width"
  33.                  hidden="true"/>
  34.                 <splitter class="tree-splitter"/>
  35.                 <treecol id="importCol" flex="1" type="checkbox" persist="width" editable="true" />
  36.             </treecols>
  37.             <treechildren id="signonsTreeChildren" />
  38.         </tree>
  39.         <separator class="thin"/>
  40.         <hbox id="SignonViewerButtons">
  41.             <button id="selectAll"
  42.               oncommand="SelectAllSignons();"/>
  43.             <button id="unselectAll"
  44.               oncommand="UnselectAllSignons();"/>
  45.             <spacer flex="1"/>
  46.             <button id="togglePasswords"
  47.               oncommand="TogglePasswordVisible();"/>
  48.         </hbox>
  49.     </vbox>
  50.     <hbox align="end">
  51.         <hbox class="actionButtons" flex="1">
  52.             <button id="importBtn"
  53.               oncommand="ImportSignons();" />
  54.             <button id="cancelBtn"
  55.               oncommand="cancel();" />
  56.         </hbox>
  57.         <resizer dir="bottomright"/>
  58.     </hbox>
  59. </window>
  60.